Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-03-29 00:20:43 +0000
committerStijn Buys <ingar@osirion.org>2008-03-29 00:20:43 +0000
commit53007b7b524a3cfc8ac426d5809231ef9d48fe18 (patch)
treecd8e291752a40d0033e160fbdd5eab1c15f11b77 /configure.in
parent59248fb9e96ac159886f5bbb5cf7e2bb2755c930 (diff)
win32 icons
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 1b03846..6b97f21 100644
--- a/configure.in
+++ b/configure.in
@@ -67,15 +67,21 @@ case "$host" in
*-*-mingw*)
HOST_LIBS="-lws2_32"
HOST_GL_LIBS="-lopengl32 -lglu32"
+ ICON_CLIENT="osirion-res.o"
+ ICON_SERVER="osiriond-res.o"
AC_MSG_RESULT(win32)
;;
*)
HOST_LIBS=""
HOST_GL_LIBS="-lGL -lGLU"
+ ICON_CLIENT=""
+ ICON_SERVER=""
AC_MSG_RESULT(generic unix)
;;
esac
AC_SUBST(HOST_LIBS)
+AC_SUBST(ICON_CLIENT)
+AC_SUBST(ICON_SERVER)
AC_MSG_CHECKING(whether to abort on compiler warnings)
WARN_CFLAGS=""