If you link to GPL code, and you release your code to anyone (outside your company), then you have to license your code to them under the GPL as well, or some license compatable with the GPL.
Really, that isn't as bad a deal as a lot of people think. You can still sell your program to people for money, for example. To get a full picture of what it means, I'd suggest reading through the GPL FAQ
If you still can't deal with that, then you will have to remove the GPL code from your program (or not distribute it to anyone).
Based on the comments, I see a lot of people seem to be very confused about what GPL-compatable means.
When you redistribute GPLed code to someone, it has to be under the GPL (its original version or newer). However, that is not true for any new code you may have written yourself and linked with that GPL'ed code. You can put any license you want on your own code.
The catch is that it is quite possible to put a license on your own code which has restrictions on in it that interact with the GPL (on the code you linked in) in such a way that you cannot legally distribute the entire program to anyone else. Licenses like that are termed GPL incompatable.
As for the question's latest edit (2): With GPL version 2, If you aren't actually linking against GPLed code, or textually including it with a preprocessor somehow, you are free to release under any license you like. Just don't "upgrade" its license to GPL 3. :-)
