1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 00:29:31 +00:00

Revert "don't define DYN_DRV for targets which don't predefine it"

This reverts commit 29671f5f06.
This commit is contained in:
Oliver Schmidt 2014-06-04 23:50:46 +02:00
parent 2c975d3642
commit 132d57f1ad

View File

@ -30,6 +30,12 @@
*/
# undef DYN_DRV
# define DYN_DRV 0
#else
/* Use a dynamically loaded driver, by default. */
# ifndef DYN_DRV
# define DYN_DRV 1
# endif
#endif