~linaro-maintainers/ubuntu/natty/bluez/overlay

« back to all changes in this revision

Viewing changes to acinclude.m4

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2011-04-05 10:09:16 UTC
  • mfrom: (1.1.31 upstream)
  • Revision ID: james.westby@ubuntu.com-20110405100916-3am5el1q0asa4ul2
Tags: 4.91-0ubuntu1
* New upstream release
* debian/libbluetooth3.symbols:
  - Updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
205
205
        configfiles_enable=yes
206
206
        telephony_driver=dummy
207
207
        maemo6_enable=no
 
208
        sap_driver=dummy
 
209
        dbusoob_enable=no
208
210
 
209
211
        AC_ARG_ENABLE(optimization, AC_HELP_STRING([--disable-optimization], [disable code optimization]), [
210
212
                optimization_enable=${enableval}
226
228
                sap_enable=${enableval}
227
229
        ])
228
230
 
 
231
        AC_ARG_WITH(sap, AC_HELP_STRING([--with-sap=DRIVER], [select SAP driver]), [
 
232
                sap_driver=${withval}
 
233
        ])
 
234
        AC_SUBST([SAP_DRIVER], [sap-${sap_driver}.c])
 
235
 
229
236
        AC_ARG_ENABLE(serial, AC_HELP_STRING([--disable-serial], [disable serial plugin]), [
230
237
                serial_enable=${enableval}
231
238
        ])
332
339
                maemo6_enable=${enableval}
333
340
        ])
334
341
 
 
342
        AC_ARG_ENABLE(dbusoob, AC_HELP_STRING([--enable-dbusoob], [compile with D-Bus OOB plugin]), [
 
343
                dbusoob_enable=${enableval}
 
344
        ])
 
345
 
335
346
        AC_ARG_ENABLE(hal, AC_HELP_STRING([--enable-hal], [Use HAL to determine adapter class]), [
336
347
                hal_enable=${enableval}
337
348
        ])
390
401
        AM_CONDITIONAL(UDEVRULES, test "${udevrules_enable}" = "yes")
391
402
        AM_CONDITIONAL(CONFIGFILES, test "${configfiles_enable}" = "yes")
392
403
        AM_CONDITIONAL(MAEMO6PLUGIN, test "${maemo6_enable}" = "yes")
 
404
        AM_CONDITIONAL(DBUSOOBPLUGIN, test "${dbusoob_enable}" = "yes")
393
405
])