1 ## |
1 ## |
2 ## OSSP asgui - Accounting system graphical user interface |
2 ## OSSP asgui - Accounting system graphical user interface |
3 ## Copyright (c) 2002-2004 The OSSP Project (http://www.ossp.org/) |
3 ## Copyright (c) 2002-2008 The OSSP Project (http://www.ossp.org/) |
4 ## Copyright (c) 2002-2004 Ralf S. Engelschall <rse@engelschall.com> |
4 ## Copyright (c) 2002-2008 Ralf S. Engelschall <rse@engelschall.com> |
5 ## Copyright (c) 2002-2004 Michael Schloh von Bennewitz <michael@schloh.com> |
5 ## Copyright (c) 2002-2008 Michael Schloh von Bennewitz <michael@schloh.com> |
6 ## Copyright (c) 2002-2004 Cable & Wireless Telecommunications Services GmbH |
6 ## Copyright (c) 2002-2008 Cable & Wireless Telecommunications Services GmbH |
7 ## |
7 ## |
8 ## This file is part of OSSP asgui, an accounting system graphical user |
8 ## This file is part of OSSP asgui, an accounting system graphical user |
9 ## interface which can be found at http://www.ossp.org/pkg/tool/asgui/. |
9 ## interface which can be found at http://asgui.europalab.com/. |
10 ## |
10 ## |
11 ## Permission to use, copy, modify, and distribute this software for |
11 ## Permission to use, copy, modify, and distribute this software for |
12 ## any purpose with or without fee is hereby granted, provided that |
12 ## any purpose with or without fee is hereby granted, provided that |
13 ## the above copyright notice and this permission notice appear in all |
13 ## the above copyright notice and this permission notice appear in all |
14 ## copies. |
14 ## copies. |
61 CFLAGS="$CFLAGS $PTHREAD_CFLAGS" |
61 CFLAGS="$CFLAGS $PTHREAD_CFLAGS" |
62 CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS" |
62 CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS" |
63 LIBS="`echo $PTHREAD_CFLAGS | sed -e 's;.*\(-[[pmk]]thread[[s]]*\).*;\1;'` $LIBS" |
63 LIBS="`echo $PTHREAD_CFLAGS | sed -e 's;.*\(-[[pmk]]thread[[s]]*\).*;\1;'` $LIBS" |
64 |
64 |
65 dnl Do Qt checks |
65 dnl Do Qt checks |
66 PKG_CHECK_MODULES(QT, qt >= 3.2.0, have_qt=true, AC_MSG_ERROR([No qt installation found])) |
66 PKG_CHECK_MODULES(QT, Qt3Support, have_qt=true, AC_MSG_ERROR([No qt installation found])) |
67 AC_SUBST(QT_LIBS) |
67 AC_SUBST(QT_LIBS) |
68 AC_SUBST(QT_CFLAGS) |
68 AC_SUBST(QT_CFLAGS) |
69 |
69 |
70 dnl Find Qt locations |
70 dnl Find Qt locations |
71 AC_CHECK_QT |
71 AC_CHECK_QT |