axeljaeger
31-08-2003, 10:03
Ich versuche gerade, Projekte von qmake auf automake umzustellen, das hat auch mit ganz kleinen Sachen gut geklappt, doch jetzt, bei einem etwas komplexeren Beispiel bekomme ich ne ganz seltsame Fehlermeldung:
[axel@tecton outpost]$ autoconf
NONE:0: /usr/bin/m4: ERROR: EOF in string
[axel@tecton outpost]$
das dazugehörige configure.in sieht so aus:
AC_INIT(src/outpost.h)
AM_INIT_AUTOMAKE(outpost,0.1)
AC_PROG_CPP
AC_PROG_CXX
AC_ARG_WITH(qt,
[ --with-qt-include=<path> prefix of the qt includes],
[qtinc="-I${with-qt-include}",
[qtinc=""]
CPPFLAGS="$CPPFLAGS ${qtinc}"
AC_CHECH_HEADERS(qapplication.h,
AC_MSG_RESULT("Qt headers found"),
AC_MSG_ERROR("Qt not found"))
AC_PROG_INSTALL
AC_OUTPUT(Makefile src/Makefile)
Ich nehme mal an, da hat kwrite beim speichern irgendwie Mist gebaut. Weis jmd, welchen Ascii-Code ein EOF hat, so das ich das mit einem Hexeditor wieder raushauen kann?
[axel@tecton outpost]$ autoconf
NONE:0: /usr/bin/m4: ERROR: EOF in string
[axel@tecton outpost]$
das dazugehörige configure.in sieht so aus:
AC_INIT(src/outpost.h)
AM_INIT_AUTOMAKE(outpost,0.1)
AC_PROG_CPP
AC_PROG_CXX
AC_ARG_WITH(qt,
[ --with-qt-include=<path> prefix of the qt includes],
[qtinc="-I${with-qt-include}",
[qtinc=""]
CPPFLAGS="$CPPFLAGS ${qtinc}"
AC_CHECH_HEADERS(qapplication.h,
AC_MSG_RESULT("Qt headers found"),
AC_MSG_ERROR("Qt not found"))
AC_PROG_INSTALL
AC_OUTPUT(Makefile src/Makefile)
Ich nehme mal an, da hat kwrite beim speichern irgendwie Mist gebaut. Weis jmd, welchen Ascii-Code ein EOF hat, so das ich das mit einem Hexeditor wieder raushauen kann?