]> git.pld-linux.org Git - packages/flimsel.git/commitdiff
- initial
authorZsolt Udvari <uzsolt@pld-linux.org>
Sun, 16 Aug 2009 10:30:00 +0000 (10:30 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- newest epeg uses pkg-config instead of own epeg-config

Changed files:
    flimsel-epeg.patch -> 1.1

flimsel-epeg.patch [new file with mode: 0644]

diff --git a/flimsel-epeg.patch b/flimsel-epeg.patch
new file mode 100644 (file)
index 0000000..fe3a9b3
--- /dev/null
@@ -0,0 +1,22 @@
+--- flimsel-0.0.6-orig/configure.ac    2009-08-08 23:38:13.000000000 +0200
++++ flimsel-0.0.6/configure.ac 2009-08-16 11:28:14.845001152 +0200
+@@ -49,14 +49,13 @@
+ # Check for epeg
+ AC_PATH_PROG(EPEGCONFIG,epeg-config)
+-if test "x$EPEGCONFIG" = x; then
+-      echo "epeg-config not found"
++if (pkg-config epeg); then
++      CXXFLAGS="`pkg-config --cflags epeg` $CXXFLAGS"
++      LIBS="`pkg-config --libs epeg` $LIBS"
++else
++      echo "epeg.pc not found (check your pkg-config installation)"
+       exit 1
+ fi
+-CXXFLAGS="`$EPEGCONFIG --cflags` $CXXFLAGS"
+-LIBS="`$EPEGCONFIG --libs` $LIBS"
+-
+-
+ AC_CONFIG_FILES([Makefile src/Makefile])
+ AC_OUTPUT
This page took 0.070449 seconds and 4 git commands to generate.