-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.w32
More file actions
21 lines (15 loc) · 897 Bytes
/
config.w32
File metadata and controls
21 lines (15 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// $Id$
// vim:ft=javascript
ARG_WITH("winbinder", "Include windows GUI support", "yes");
if (PHP_WINBINDER == "yes") {
EXTENSION("winbinder", "phpwb_bitmap.c phpwb_control.c phpwb_control_listview.c\
phpwb_control_menu.c phpwb_control_toolbar.c phpwb_control_treeview.c\
phpwb_draw.c phpwb_export.c phpwb_font.c phpwb_generic.c phpwb_lowlevel.c\
phpwb_sysdlg.c phpwb_wb_lib.c phpwb_window.c phpwb_winsys.c", PHP_WINBINDER_SHARED, "/Iext/wibinder/wb");
ADD_SOURCES(configure_module_dirname + "/wb", "wb_bitmap.c wb_control.c\
wb_control_calendar.c wb_control_html.c wb_control_hyperlink.c wb_control_label.c\
wb_control_listview.c wb_control_menu.c wb_control_tab.c wb_control_toolbar.c\
wb_control_treeview.c wb_draw.c wb_font.c wb_generic.c wb_lowlevel.c\
wb_sysdlg.c wb_window.c wb_winsys.c", "winbinder")
AC_DEFINE('HAVE_WINBINDER', 1, 'Include Windows GUI support', false);
}