1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Fix missing pthread symbols on -current.

Submitted by:	Ulrich Spoerlein <q@uni.de>
This commit is contained in:
Alexander Leidinger 2003-02-01 13:54:33 +00:00
parent 137eefaa29
commit 1d02643ec3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=74423

View File

@ -5,7 +5,7 @@
else
SDL_CFLAGS=`$SDL_CONFIG $sdlconf_args --cflags`
- SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs`
+ SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs` # | sed 's/-lc_r/-pthread/'`
+ SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs | sed 's/-lc_r/-pthread/'`
sdl_major_version=`$SDL_CONFIG $sdl_args --version | \
sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'`