-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfigure.ac
138 lines (121 loc) · 3.64 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
dnl
dnl Configure script for SmallBASIC plugins
dnl
dnl Copyright(C) 2001-2024 Chris Warren-Smith.
dnl
dnl This program is distributed under the terms of the GPL v2.0
dnl Download the GNU Public License (GPL) from www.gnu.org
dnl
AC_INIT([smallbasic],[27.0])
AC_CONFIG_AUX_DIR(aux-dist)
AC_CONFIG_MACRO_DIRS([m4])
AC_CONFIG_SRCDIR([include/param.cpp])
AC_CONFIG_HEADERS([config.h])
AC_LANG([C])
AC_LANG([C++])
AM_INIT_AUTOMAKE([subdir-objects])
LT_INIT([win32-dll])
dnl sbasic is required for raylib code generation
AC_CHECK_PROG(SBASIC_CHECK,sbasic, yes)
AS_IF([test x"$SBASIC_CHECK" != x"yes"], [AC_MSG_ERROR([Please install sbasic before configuring.])])
function checkDebugMode() {
AC_MSG_CHECKING([if debug mode is enabled])
AC_ARG_WITH(debug,
[ --with-debug Build the debug version default=no],
[with_debug=$withval],
[with_debug=no])
AC_MSG_RESULT([$with_debug])
if test "$with_debug" = "yes" || test "$with_debug" = "full"
then
CFLAGS="${CFLAGS} -g -O0"
CXXFLAGS="${CXXFLAGS} -g -O0"
AC_DEFINE(_DEBUG, 1, [debugging build enabled])
fi
AC_SUBST(CFLAGS)
}
AC_ARG_WITH(mlpack,
[AS_HELP_STRING([--with-mlpack], [Build the mlpack module])],
[MLPACK="yes"],
[MLPACK="no"])
AC_ARG_WITH(gtk-server,
[AS_HELP_STRING([--with-gtk-server], [Build the gtk-server module])],
[GTK_SERVER="yes"],
[GTK_SERVER="no"])
AC_ARG_WITH(ioio,
[AS_HELP_STRING([--with-ioio], [Build the ioio module])],
[IOIO="yes"],
[IOIO="no"])
case "${host_os}" in
*mingw* | *msys*)
AC_DEFINE(_WIN32, 1, [building for win32])
PLATFORM_LDFLAGS="-no-undefined -Wc,-static-libgcc -Wl,-static -avoid-version"
RAYLIB_LDFLAGS="-pthread -lgdi32 -mwindows"
CLIPBOARD_LDFLAGS=""
NUKLEAR_LDFLAGS="-pthread -lgdi32 -mwindows"
WEBSOCKET_LDFLAGS="-lwsock32"
GTK_SERVER_LDFLAGS=""
GTK_SERVER_CPPFLAGS="-DGTK_SERVER_WIN32"
IOIO_CPPFLAGS=""
IOIO_LDFLAGS=""
NUKLEAR_CPPFLAGS=""
;;
*)
PLATFORM_LDFLAGS="-Wl,--no-undefined -avoid-version"
CLIPBOARD_LDFLAGS="`pkg-config xcb --libs` -lpthread"
NUKLEAR_LDFLAGS="-lGL -lm -lpthread -ldl -lrt -lX11"
WEBSOCKET_LDFLAGS=""
GTK_SERVER_LDFLAGS="`pkg-config --libs gtk+-3.0` -lXm -lXt"
GTK_SERVER_CPPFLAGS="`pkg-config --cflags gtk+-3.0` -DGTK_SERVER_FFI -DGTK_SERVER_LIBRARY -DGTK_SERVER_UNIX -DGTK_SERVER_GTK3x"
RAYLIB_LDFLAGS="-lGL -lm -lpthread -ldl -lrt -lX11"
JVM_CPPFLAGS="-I/usr/lib/jvm/java-1.8.0-openjdk-amd64/include -I/usr/lib/jvm/java-1.8.0-openjdk-amd64/include/linux"
JVM_LDFLAGS="-L/usr/lib/jvm/java-1.8.0-openjdk-amd64/jre/lib/amd64/server -ljvm"
NUKLEAR_CPPFLAGS="-D_GLFW_X11=1"
esac
AC_SUBST(DEBUG_LDFLAGS)
AC_SUBST(CLIPBOARD_LDFLAGS)
AC_SUBST(RAYLIB_LDFLAGS)
AC_SUBST(NUKLEAR_LDFLAGS)
AC_SUBST(WEBSOCKET_LDFLAGS)
AC_SUBST(PLATFORM_LDFLAGS)
AC_SUBST(GTK_SERVER_LDFLAGS)
AC_SUBST(GTK_SERVER_CPPFLAGS)
AC_SUBST(JVM_LDFLAGS)
AC_SUBST(JVM_CPPFLAGS)
AC_SUBST(NUKLEAR_CPPFLAGS)
dnl change default aru setting to avoid warning
ARFLAGS=cr
AC_SUBST(ARFLAGS)
LT_INIT([dlopen])
LT_PREREQ([2.2])
AC_PROG_CXX
BUILD_SUBDIRS="debug nuklear gifenc glfw clipboard websocket raylib"
if test "${MLPACK}" = "yes"
then
BUILD_SUBDIRS="${BUILD_SUBDIRS} mlpack"
fi
if test "${GTK_SERVER}" = "yes"
then
BUILD_SUBDIRS="${BUILD_SUBDIRS} gtk-server"
fi
if test "${IOIO}" = "yes"
then
BUILD_SUBDIRS="${BUILD_SUBDIRS} ioio"
fi
AC_SUBST(BUILD_SUBDIRS)
checkDebugMode
libdir=${libdir}/smallbasic
AC_CONFIG_FILES([
Makefile
debug/Makefile
nuklear/Makefile
gifenc/Makefile
glfw/Makefile
clipboard/Makefile
websocket/Makefile
raylib/Makefile
mlpack/Makefile
ioio/Makefile
gtk-server/Makefile])
AC_OUTPUT
# create config to libclipboard
cp config.h clipboard/libclipboard-config.h