mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
0d2725682b
structure (i.e. include/SDL for includes and sdl-config for configuration binary) - Update graphics/sdl_ttf to version 2.0.8 - Update graphics/sdl_image to version 1.2.5 - Update audio/sdl_mixer to version 1.2.7 - Update net/sdl_net to version 1.2.6 - Update Mk/bsd.sdl.mk accordingly - Fix dependent ports to fit the new directory structure and avoid several API breakages - Bump up portrevisions for all dependent ports to allow them to be upgraded by portupgrade/portmaster etc tools Approved by: kris (portmgr), sem (mentor)
38 lines
942 B
Plaintext
38 lines
942 B
Plaintext
--- configure.in.orig Sat Jun 30 16:38:55 2001
|
|
+++ configure.in Sat Jun 30 16:42:42 2001
|
|
@@ -79,12 +79,12 @@
|
|
if test "$with_sdl" != "no" ; then
|
|
AC_CHECK_PROG(SDL_CONFIG, sdl-config, yes)
|
|
if test "$SDL_CONFIG" ; then
|
|
-SDL_LIBS="`sdl-config --libs`"
|
|
-SDL_CFLAGS="`sdl-config --cflags`"
|
|
+SDL_LIBS="`$SDL_CONFIG --libs`"
|
|
+SDL_CFLAGS="`$SDL_CONFIG --cflags`"
|
|
old_incs="$INCS"
|
|
INCS="$INCS $SDL_CFLAGS"
|
|
-AC_CHECK_LIB(SDL, SDL_Init, [
|
|
-AC_CHECK_HEADERS(SDL/SDL.h, ,[
|
|
+AC_CHECK_LIB(SDL, SDL_Init, [
|
|
+AC_CHECK_HEADERS(SDL/SDL.h, ,[
|
|
AC_MSG_WARN(SDL found but headers are missing!!)
|
|
with_sdl=no
|
|
])], [with_sdl=no], $SDL_LIBS)
|
|
@@ -189,7 +189,7 @@
|
|
yes|full)
|
|
AC_MSG_RESULT(producing heavily optimized code)
|
|
|
|
-CFLAGS="$CFLAGS -O3"
|
|
+CFLAGS="$CFLAGS"
|
|
|
|
case `uname -m` in
|
|
i?86) CFLAGS="$CFLAGS -DALLOW_UNALIGNED_IO" ;;
|
|
@@ -214,7 +214,7 @@
|
|
low)
|
|
|
|
AC_MSG_RESULT(using minimal optimizations)
|
|
-CFLAGS="$CFLAGS -O3" ;;
|
|
+CFLAGS="$CFLAGS" ;;
|
|
|
|
esac
|
|
|